home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / COMMADIO / WILD1.LZH / HELP.ZIP / EDITMSG.HLP next >
Text File  |  1992-11-03  |  3KB  |  75 lines

  1. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  2. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  4.                          ┌───────────────────────────┐
  5.                          │  Message Edit Help Screen │
  6.                          └───────────────────────────┘
  7. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  8. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  9. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  10.  
  11. [L]ist
  12.      Lists the message as it exists, can be called anytime during 
  13.      the editing session.
  14.  
  15. [E]dit
  16.      The message line editor is probably one of the most    
  17.      misunderstood functions in message entry. Because of the
  18.      line by line nature of serial communications a full screen
  19.      editor cannot be implemented. Instead, a search for text to
  20.      be changed is followed by insertion of the corrected text.
  21.      The terminology used is OLDSTRING for the text to be
  22.      replaced and NEWSTRING for the new text. After asking for 
  23.      the line number to be edited, WILDCAT! needs to know what
  24.      needs to be changed. The syntax for this procedure is 
  25.  
  26.      OLDSTRING;NEWTSTRING  (note the semicolon between the two words).
  27.  
  28.      This command is translated as "Take the first occurrence of
  29.      the characters OLDSTRING and delete them, then insert the
  30.      characters NEWSTRING in the same location. For example, if
  31.      the message line reads:
  32.  
  33.     "this is a message to shw how to use th Edit command."
  34.  
  35.      Obviously we need to change two errors, the word "th" for
  36.      "the" and "shw" for "show". First lets fix "shw" by using
  37.      the command "shw;show" which scans for the word "shw" and
  38.      replaces it with "show". Now the harder correction. Notice
  39.      that the first occurrence of the incorrect text "th" is
  40.      actually a part of correct text "this" in the 1st word.
  41.      Therefore we can't simply use the command "th;the" or the
  42.      new message will read 
  43.  
  44.     "theis is a message...". 
  45.  
  46.      The proper method is to broaden the OLDSTRING search to
  47.      include additional unique text such as 
  48.  
  49.     "use th;use the"
  50.  
  51.      Notice that we can replace any number of letters even with a
  52.      shorter or longer NEWSTRING. 
  53.  
  54.      After an edit the caller is presented with the corrected
  55.      line and allowed to make more corrections, if needed. A
  56.      blank [C/R] terminates the Edit mode.
  57.  
  58. [I]nsert
  59.      Allows insertion of new lines in the text. The user is
  60.      prompted for the line number where new lines should be
  61.      inserted. The selected line number moves down, and a new
  62.      line is added at the chosen number. Any number of new lines
  63.      will be inserted as word-wrap creates more new lines as
  64.      needed.
  65.  
  66. [+] Subj.
  67.      Pressing the plus key (+) allows editing the Subject line of
  68.      the message in the event that it is incorrect or misspelled.
  69.  
  70. [S]ave
  71.      After the message has been proofread and edited, the save
  72.      command will update the message base with the message and
  73.      appropriate carbon copies, if requested.
  74.  
  75.